home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / DFUE / CIM / stuff / scripts / arexx / known.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  2000-01-01  |  716 b   |  38 lines

  1.  
  2.  
  3. /* 
  4.  
  5.    Name:            known.rexx
  6.    Version:         $VER: known_arexxscript 1.0 (15.01.2000)
  7.    Author:          Jan-Erik Tervo
  8.    
  9.    Description:     Checks if the Callers Birthday is in the near future (2 weeks)
  10.                     
  11.    Requires:        AOS 3 or newer, ARexx, CIM r36 or better with ARexx Port enabled
  12.  
  13. */
  14.  
  15.  
  16.  
  17. OPTIONS RESULTS
  18.  
  19. ADDRESS COMMAND 'RUN >NIL: RequestChoice "CIM" "A VOICE CALL RECEIVED !" "OK"'
  20.  
  21.  
  22. ADDRESS CIM
  23.  
  24.  
  25.           CBDAYINFUTURE 14
  26.           
  27.           IF RC=0 THEN DO
  28.           
  29.                /* Birthday was found in the given time span! Lets display
  30.                   the data in CIM message window */
  31.           
  32.                BDAYMESSAGE_DTG
  33.          
  34.  
  35.           END
  36.  
  37.  
  38.